home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / W3ISAPI.MO_ / w3isapi.mof
Encoding:
Text File  |  2003-02-21  |  1.5 KB  |  68 lines

  1. //**************************************************
  2. // *** W3Core Trace Data Layout
  3. //**************************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6.  
  7. [Dynamic,
  8.   Description("IIS: WWW Isapi Extension") : amended,
  9.   Guid("{a1c2040e-8840-4c31-ba11-9871031a19ea}"),
  10.   locale("MS\\0x409")]
  11. class IIS_IsapiTrace:EventTrace
  12. {
  13.  
  14. };
  15.  
  16. [Dynamic,
  17.  Description("IIS User Request") : amended,
  18.  Guid("{2e94e6c7-eda0-4b73-9010-2529edce1c27}"),
  19.  DisplayName("W3Isapi"),
  20.  locale("MS\\0x409")
  21. ]
  22. class Isapi_Trans:IIS_IsapiTrace
  23. {
  24.  
  25. };
  26.  
  27. [Dynamic,
  28.  Description("Map RequestId to connID") : amended,
  29.  EventType(1),
  30.  EventTypeName("Start") : amended
  31. ]
  32. class IsapiMapRequestId:Isapi_Trans
  33. {
  34.     [WmiDataId(1),
  35.      Description("Request ID") : amended,
  36.      read]
  37.      uint64  RequestId;
  38.     [WmiDataId(2),
  39.      Description("connID") : amended,
  40.      pointer,
  41.      read]
  42.      uint32 connID;
  43.     [WmiDataId(3),
  44.      Description("Boolean Out Of Process Flag") : amended,
  45.      read]
  46.      uint32  fOop;
  47. };
  48.  
  49. [Dynamic,
  50.  Description("Delete Isapi Context") : amended,
  51.  EventType{2, 10, 11, 12, 13, 14, 15},
  52.  EventTypeName{"End", "SndHdr", "SndHdrEx", "VecSnd", "ErrSnd", "SsfSnd", "SsfErr"} : amended
  53. ]
  54. class IsapiDeleteContext:Isapi_Trans
  55. {
  56.     [WmiDataId(1),
  57.      Description("Request ID") : amended,
  58.      read]
  59.      uint64  RequestId;
  60.     [WmiDataId(2),
  61.      Description("connID") : amended,
  62.      pointer,
  63.      read]
  64.      uint32 connID;
  65. };
  66.  
  67.  
  68.